home *** CD-ROM | disk | FTP | other *** search
/ Hyper Stacks 1994 May / Hyper Stacks (Pacific HiTech)(1994)[Mac].iso / HyperTalk / HyperWrite 1.1 / card_3842.txt < prev    next >
Text File  |  1988-03-21  |  6KB  |  197 lines

  1. -- card: 3842 from stack: in.1
  2. -- bmap block id: 2741
  3. -- flags: 0000
  4. -- background id: 3394
  5. -- name: Editor
  6.  
  7.  
  8. -- part 5 (button)
  9. -- low flags: 00
  10. -- high flags: 8000
  11. -- rect: left=432 top=87 right=133 bottom=486
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 1004 / 1004
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: Save Text
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   Open file field "loc title"
  23.   Write field "loc text" to file field "loc title"
  24.   Close file field "loc title"
  25. end mouseUp
  26.  
  27.  
  28.  
  29. -- part 6 (button)
  30. -- low flags: 00
  31. -- high flags: 8000
  32. -- rect: left=432 top=187 right=234 bottom=486
  33. -- title width / last selected line: 0
  34. -- icon id / first selected line: 1007 / 1007
  35. -- text alignment: 1
  36. -- font id: 0
  37. -- text size: 12
  38. -- style flags: 0
  39. -- line height: 16
  40. -- part name: Print
  41. ----- HyperTalk script -----
  42. on mouseUp
  43.   doMenu "Print report..."
  44. end mouseUp
  45.  
  46.  
  47.  
  48. -- part 9 (button)
  49. -- low flags: 00
  50. -- high flags: 0000
  51. -- rect: left=440 top=286 right=320 bottom=479
  52. -- title width / last selected line: 0
  53. -- icon id / first selected line: 20098 / 20098
  54. -- text alignment: 1
  55. -- font id: 0
  56. -- text size: 12
  57. -- style flags: 0
  58. -- line height: 16
  59. -- part name: bye
  60. ----- HyperTalk script -----
  61. on mouseUp
  62.   go to stack "Home"
  63. end mouseUp
  64.  
  65.  
  66.  
  67.  
  68. -- part 10 (button)
  69. -- low flags: 00
  70. -- high flags: 8000
  71. -- rect: left=432 top=37 right=83 bottom=486
  72. -- title width / last selected line: 0
  73. -- icon id / first selected line: 1005 / 1005
  74. -- text alignment: 1
  75. -- font id: 0
  76. -- text size: 12
  77. -- style flags: 0
  78. -- line height: 16
  79. -- part name: Open Text
  80. ----- HyperTalk script -----
  81. on mouseUp
  82.   ask "Import text from what file?"
  83.   if it is empty then exit mouseUp
  84.   put it into fileName
  85.   open file fileName
  86.   read from file fileName for 99999
  87.   put it into field "loc text"
  88.   put fileName into field "loc title"
  89. end mouseUp
  90.  
  91.  
  92. -- part 11 (button)
  93. -- low flags: 00
  94. -- high flags: 8000
  95. -- rect: left=432 top=238 right=282 bottom=486
  96. -- title width / last selected line: 0
  97. -- icon id / first selected line: 1020 / 1020
  98. -- text alignment: 1
  99. -- font id: 0
  100. -- text size: 12
  101. -- style flags: 0
  102. -- line height: 16
  103. -- part name: Help
  104. ----- HyperTalk script -----
  105. on mouseUp
  106.   show card field "Help field"
  107. end mouseUp
  108.  
  109.  
  110.  
  111. -- part 12 (field)
  112. -- low flags: 81
  113. -- high flags: 0007
  114. -- rect: left=87 top=152 right=296 bottom=357
  115. -- title width / last selected line: 0
  116. -- icon id / first selected line: 0 / 0
  117. -- text alignment: 0
  118. -- font id: 3
  119. -- text size: 10
  120. -- style flags: 0
  121. -- line height: 13
  122. -- part name: Help field
  123. ----- HyperTalk script -----
  124. on mouseUp
  125.   hide card field "Help field"
  126. end mouseUp
  127.  
  128.  
  129. -- part 13 (button)
  130. -- low flags: 00
  131. -- high flags: 8000
  132. -- rect: left=433 top=137 right=183 bottom=486
  133. -- title width / last selected line: 0
  134. -- icon id / first selected line: 2 / 2
  135. -- text alignment: 1
  136. -- font id: 0
  137. -- text size: 12
  138. -- style flags: 0
  139. -- line height: 16
  140. -- part name: Counter
  141. ----- HyperTalk script -----
  142. on mouseUp
  143.   show field "count field"
  144.   put the number of words of field 1 into docWords
  145.   put "Document has " & docWords & " words in it." into field "count field"
  146. end mouseUp
  147.  
  148.  
  149.  
  150. -- part contents for card part 12
  151. ----- text -----
  152. HyperWrite 1.1
  153. A text editor for HyperCard
  154. by Andr√© Hinds for Fanques, Inc.
  155.  
  156. To create new text, type in a name in the top box and enter the text in the bottom box.
  157.  
  158. To edit an existing Text document, click on Open Text, enter the name of the document (if the Text document is not in the same folder as HyperCard, you must type in the path name to the file) and hit Return. If HyperWrite finds the document, it will insert the name (including path) in the top box and the text into the bottom box. 
  159.  
  160. To save the document you have created or edited, click on Save Text. Unless you specify a path for the saved text in the top box, it will be put in the same disk and folder as HyperCard. NOTE: Do not save an edited Text document under its original name. You must give it a new name, or send it to a different disk or folder.
  161.  
  162. To count the number of words in the document, click on Counter.
  163.  
  164. To print all the text in the big window (even if it doesn't all show on the screen), click on Print. This will take you to the Print report... dialog box. For best results, choose the following settings:
  165.      ‚Ä¢ Copies: (choose any number you want)
  166.      ‚Ä¢ Arrange fields in: columns
  167.      ‚Ä¢ Print text fields from all cards: With the current background
  168.      ‚Ä¢ Which fields: Selected background fields: loc text
  169.      ‚Ä¢ Print the names of: (select nothing here)
  170.      ‚Ä¢ Header: (click on the # icon -- it gives you the page number at the top of each page)
  171. Then click on OK to proceed or Cancel to quit.
  172.  
  173. Fanques, Inc. is a desktop publishing consulting firm. For more information on how we can help you, write to Box 3271, Tulsa, OK 74101.
  174.  
  175.  
  176. -- part contents for background part 23
  177. ----- text -----
  178. Document has 186 words in it.
  179.  
  180. -- part contents for background part 21
  181. ----- text -----
  182. This version of HyperWrite vastly improves the printing capabilities of the stackware. Instead of just printing the screen, as the original version did, HyperWrite 1.1 is now able to print the contents of the entire big window of text.
  183.  
  184. To see how it does this, simply read the instructions in the Help file (you might have to write them down the first time you use it) for printing. Once you have done that, click on Print and print out this message (or any other Text Only file). We think you'll be pleased with the options available (like page numbers, multiple copies, etc.).
  185.  
  186. Fanques, Inc., is a desktop publishing consultant. If you have need of our services, please write to Box 3271, Tulsa, OK 74101.
  187.  
  188. Please feel free to use and modify this stackware. We have not locked any portion (except for a couple of hidden fields that need Lock Text in order to be able to click them away -- and they're easy to unlock). If you make an improvement or add any new features, please upload it to GEnie and let us know at A.HINDS.
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195. -- part contents for background part 22
  196. ----- text -----
  197. by Andr√© Hinds for Fanques, Inc.